home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
windows
/
graphs
/
multicon.arj
/
LINEVIEW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-01
|
726b
|
33 lines
// lineview.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CLineView view
class CLineView : public CView
{
DECLARE_DYNCREATE(CLineView)
protected:
CLineView(); // protected constructor used by dynamic creation
// Attributes
public:
// Operations
public:
// Implementation
protected:
virtual ~CLineView();
virtual void OnDraw(CDC* pDC); // overridden to draw this view
// Generated message map functions
protected:
//{{AFX_MSG(CLineView)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////